home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / addmem21.zip / QBNOTES.DOC < prev   
Text File  |  1991-12-31  |  2KB  |  49 lines

  1.  
  2.  
  3.  
  4.          SPECIAL NOTES FOR MICROSOFT QUICKBASIC(R) USERS
  5.          ============================================================
  6.  
  7.          When using ADDMEM.COM with QuickBASIC, there are several
  8.          things that you must know to achieve optimum use.  There are
  9.          also several things you need to know so you don't potentially
  10.          lock up your system.
  11.  
  12.  
  13.          THINGS YOU SHOULD DO
  14.          ====================
  15.  
  16.          When you initially load the editor, be sure to add the "/G"
  17.          command line option to your normal command line option(s).
  18.          An example would be:
  19.  
  20.               QB /G
  21.               QBX /G
  22.  
  23.          This option forces QuickBASIC to use direct screen writes
  24.          within the editor.  For some reason, ADDMEM inhibits the
  25.          automatic usage of this option.  If you don't use this
  26.          option, you will notice that the screen gets updated a little
  27.          slower.
  28.  
  29.  
  30.  
  31.          THINGS YOU SHOULD NOT DO
  32.          ========================
  33.  
  34.          The following BASIC commands should not be used while ADDMEM
  35.          is resident:
  36.  
  37.               WIDTH 40
  38.               WIDTH 80
  39.               PALETTE
  40.               SCREEN 2   (or anything above)
  41.  
  42.          "PALETTE" may or may not work on VGA systems.  Try it and see
  43.          if it works for your system.
  44.  
  45.          It is ALWAYS safe to use SCREEN to switch the "APAGE" and
  46.          "VPAGE" options, but do not attempt to switch into any other
  47.          video mode except mode 1.
  48.  
  49.